home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / STRXFORM.CC < prev    next >
Text File  |  1993-04-04  |  249b  |  11 lines

  1. str_xform(char *str,char from,char to)
  2. /* This function will transform all characters in the string pointed to
  3.    by *str that are the same as the from character to the to char.
  4. */
  5. {
  6.     while(*str) {
  7.         if(*str==from) *str=to;
  8.         str++;
  9.     }
  10. }
  11.